curl --request GET \
--url http://localhost:50001/events{
"events": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"eventDate": "<string>",
"basePrice": 123
}
]
}Retrieve a list of all available events without seatmap details
curl --request GET \
--url http://localhost:50001/events{
"events": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"eventDate": "<string>",
"basePrice": 123
}
]
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/JostinAlvaradoS/ticketing_project_week0/llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET http://localhost:50001/events \
-H "Content-Type: application/json"
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Coldplay - Live in Santiago",
"description": "World tour 2026",
"eventDate": "2026-03-15T19:00:00Z",
"basePrice": 50.00
},
{
"id": "650e8400-e29b-41d4-a716-446655440001",
"name": "Taylor Swift - The Eras Tour",
"description": "Experience all musical eras in one unforgettable night",
"eventDate": "2026-04-20T20:00:00Z",
"basePrice": 75.00
},
{
"id": "750e8400-e29b-41d4-a716-446655440002",
"name": "Ed Sheeran - Mathematics Tour",
"description": "Intimate acoustic performance",
"eventDate": "2026-05-10T19:30:00Z",
"basePrice": 60.00
}
]
500 Internal Server Error
{
"error": "Internal server error",
"message": "An unexpected error occurred while fetching events"
}
[] if no events exist in the system